home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / ctype / toascii.c < prev    next >
C/C++ Source or Header  |  1989-06-13  |  1KB  |  44 lines

  1. /* 
  2.  * toascii.c --
  3.  *
  4.  *    Contains the C library procedure "toascii".
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /sprite/src/lib/c/ctype/RCS/toascii.c,v 1.1 89/06/13 16:44:02 douglis Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include "ctype.h"
  21.  
  22. /*
  23.  *----------------------------------------------------------------------
  24.  *
  25.  * toascii --
  26.  *
  27.  *    Return the ascii portion of a character.
  28.  *
  29.  * Results:
  30.  *    The low-order 8 bits of the character are returned.
  31.  *
  32.  * Side effects:
  33.  *    None.
  34.  *
  35.  *----------------------------------------------------------------------
  36.  */
  37.  
  38. int
  39. toascii(c)
  40.     int c;            /* Value to convert. */
  41. {
  42.     return (c & 0177);
  43. }
  44.